home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Enter 2005 October
/
enter-2005-10.iso
/
files
/
jedit42install.exe
/
{app}
/
jedit.jar
/
bsh
/
commands
/
getClassPath.bsh
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2003-12-27
|
325 b
|
14 lines
/**
Get the current classpath including all user path, extended path, and the
bootstrap JAR file if possible.
*/
bsh.help.getClassPath= "usage: getClassPath()";
import bsh.BshClassManager;
URL [] getClassPath() {
this.cp = this.caller.namespace.getClassManager().getClassPath();
return cp.getPathComponents();
}